22 lines
397 B
C#
22 lines
397 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
public class PartSerial
|
|
{
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
|
|
|
|
[Required]
|
|
public long PartId { get; set; }
|
|
[Required]
|
|
public string Serial { get; set; }
|
|
|
|
|
|
|
|
}//eoc
|
|
|
|
}//eons |