ApiVirtualTask/ApiPolo/Models/CC_CI.cs
2025-05-08 17:41:48 +02:00

21 lines
469 B
C#

using System.ComponentModel.DataAnnotations;
namespace ApiPolo.Models
{
/// <summary></summary>
public class CC_CI
{
/// <summary>codice azienda </summary>
[Key]
public string? picodazi { get; set; }
/// <summary>codice di chiusura</summary>
[Key]
public string? picodchi { get; set; }
/// <summary>codice intervento</summary>
[Key]
public string? picodint { get; set; }
}
}