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