laatzen/LaaProductionWeb/LaaProduction.Services/Models/Software/Software.cs
2024-07-17 13:13:41 +02:00

30 lines
676 B
C#

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