21 lines
469 B
C#
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; }
|
|
}
|
|
}
|