laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/Software/Software.cs
2023-05-30 16:18:36 +02:00

30 lines
671 B
C#

namespace LaaProductionWeb.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<SoftwareFunction> Functions { get; set; }
}
}