using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
///
public class Prog
{
///
[Key]
public string? tablecode { get; set; }
///
[Key]
public string? warncode { get; set; }
///
public double? autonum { get; set; }
///
public string? cpccchk { get; set; }
///
public string? autonum_name { get; set; }
}
}