using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace WebApiWebSem.Dbo.Articles { public class ArticlesBasicDbo { [Required] public IList Fields { get; set; } [Required] public string Text { get; set; } public string PictureUrl { get; set; } public string PictureCaption { get; set; } } }