Timeline Model

public class TimelineModel { public string Message { get; set; } public List<string> Tags { get; set; } public List<TimelineMediaModel> Media { get; set; } public List<TimelineUserModel> TimelineUserList { get; set; } } public class TimelineMediaModel { public string Description { get; set; } public string FileName { get; set; } public TimelineMediaTypeModel MediaType { get; set; } } public enum TimelineMediaTypeModel { Photo=0, Video=1 } public class TimelineUserModel { public long StudentId { get; set; } public string StudentName { get; set; } }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.