30 lines
668 B
C#
30 lines
668 B
C#
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<SoftwareFunction> Functions { get; set; }
|
|
}
|
|
}
|