19 lines
544 B
C#
19 lines
544 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApiSoftway.Models
|
|
{
|
|
public class Modgir
|
|
{
|
|
[Key]
|
|
public string? Piprogre { get; set; }
|
|
public string? Piserial { get; set; }
|
|
public DateTime? Pidata { get; set; }
|
|
public string? Picommit { get; set; }
|
|
public string? Pidesdiv { get; set; }
|
|
public string? Pitarga { get; set; }
|
|
public string? Piautist { get; set; }
|
|
public string? Pitiprec { get; set; }
|
|
public string? Pirigele { get; set; }
|
|
}
|
|
}
|