namespace LaaProduction.Services.Models.Software { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; public class Software { public int Id { get; set; } public short AppId { get; set; } [StringLength(50)] public string FullName { get; set; } public int MajorV { get; set; } public int MinorV { get; set; } public int BuildV { get; set; } public DateTime ValidTo { get; set; } [StringLength(150)] public string Description { get; set; } public IEnumerable Functions { get; set; } } }