15 lines
276 B
C#
15 lines
276 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace PartSource.Data.Models
|
|
{
|
|
public class Part
|
|
{
|
|
[Key]
|
|
public string Sku { get; set; }
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
public string PartNumber { get; set; }
|
|
}
|
|
}
|