using Microsoft.EntityFrameworkCore.Metadata.Internal; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ApiPolo.Models { /// public class Prog2 { /// [Key] public string? tablecode { get; set; } /// [Key] public string? warncode { get; set; } /// [Column(TypeName = "decimal(15, 0)")] /// public decimal? autonum { get; set; } /// public string? cpccchk { get; set; } /// public string? autonum_name { get; set; } } }