File: Status.cs

package info (click to toggle)
pidgin 2.14.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 52,400 kB
  • sloc: ansic: 253,254; sh: 4,565; makefile: 3,170; python: 1,232; perl: 533; cs: 209; tcl: 96; xml: 9
file content (9 lines) | stat: -rw-r--r-- 136 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
namespace Purple
{
	public class Status
	{
		private string id;
				
		public string Id { get { return id; } set { id = value; } }
	}
}