Mercurial > pidgin
view libpurple/plugins/mono/api/Buddy.cs @ 32167:a2295a76d903
One of the Piotrs tells me that the other Piotr is no longer translating.
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 18 Sep 2011 01:46:56 +0000 |
parents | 93bfbda79bf6 |
children |
line wrap: on
line source
namespace Purple { public class Buddy : BlistNode { private string name; private string alias; public string Name { get { return name; } set { name = value; } } public string Alias { get { return alias; } set { alias = value; } } } }