using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; namespace DAL { public class ThenThisaiClass { public Guid CommentID { get; set; } public string Comment { get; set; } public string Name { get; set; } public Guid UserID { get; set; } public string Password { get; set; } public string PageURL { get; set; } public DateTime PostedOn { get; set; } public string PostedIP { get; set; } public DateTime ModifiedOn { get; set; } public int Flag { get; set; } public string Reply { get; set; } public Guid ReplyID { get; set; } public Guid RegisteredUserID { get; set; } public Guid UnregisteredUserID { get; set; } public DateTime CreatedOn { get; set; } public string MailID { get; set; } public DateTime RplyPostedOn { get; set; } public DateTime RplyModifiedOn { get; set; } public string PostedTime { get; set; } public byte[] ProfilePhoto { get; set; } //Thought Of the day & NEWS public Guid TNID { get; set; } public int Type { get; set; } public string Contents { get; set; } //Voting public Guid VotingID { get; set; } public string Questions { get; set; } public int yes { get; set; } public int No { get; set; } public int consider { get; set; } public string Category { get; set; } public Guid VoteSheetID { get; set; } } }