using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPromotionFile { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _promotionId = 0; public int promotionId { get {return this._promotionId;} set {this._promotionId = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _fileName = String.Empty; public string fileName { get {return this._fileName;} set {this._fileName = value;} } private string _path = String.Empty; public string path { get {return this._path;} set {this._path = value;} } }