~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Pidgin/src/PidginStatusItem.cs

Adding missing files and Archive plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// PidginStatusItem.cs created with MonoDevelop
 
2
// User: alex at 12:28 PM 4/8/2008
 
3
//
 
4
// To change standard headers go to Edit->Preferences->Coding->Standard Headers
 
5
//
 
6
 
 
7
using System;
 
8
 
 
9
namespace Pidgin
 
10
{
 
11
        public class PidginStatusItem
 
12
        {
 
13
                private string name, message;
 
14
                private int status;
 
15
 
 
16
                public PidginStatusItem(string name, string message, int status)
 
17
                {
 
18
                        this.status = status;
 
19
                        this.message = message;
 
20
                }
 
21
                
 
22
                public string Name { get { return name; } }
 
23
                public string Description { get { return message; } }
 
24
                public int Status { get { return status; } }
 
25
                public string Icon { get { return "pidgin"; } }
 
26
        }
 
27
}