using System; using System.Configuration; namespace Dottext.Framework.Components { [Serializable] public class Attachment : IBlogIdentifier { public Attachment() { // // TODO: Add constructor logic here // } private int _blogID; public int BlogID { get {return this._blogID;} set {this._blogID = value;} } private int _PostID = 0; public int PostID { get { return this._PostID; } set { this._PostID = value; } } private int _AttachSizeInBytes = 0; public int AttachSizeInBytes { get { return this._AttachSizeInBytes; } set { this._AttachSizeInBytes = value; } } private string _AttachMimeType; public string AttachMimeType { get { return this._AttachMimeType; } set { this._AttachMimeType = value; } } private string _AttachFileName; public string AttachFileName { get { return this._AttachFileName; } set { this._AttachFileName = value; } } private string _AttachmentURL; public string AttachmentURL { get { return this._AttachmentURL; } set { this._AttachmentURL = value; } } } }