18 lines
381 B
C#
18 lines
381 B
C#
![]() |
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace Back.Data.Models
|
|||
|
{
|
|||
|
public class CODUnit
|
|||
|
{
|
|||
|
|
|||
|
public int ID { get; set; }
|
|||
|
[MaxLength(8)]
|
|||
|
public string? UnitTaxID { get; set; }
|
|||
|
public string Title { get; set; }
|
|||
|
|
|||
|
#region Navigation
|
|||
|
public virtual ICollection<CODItem> CODItemS { get; set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|