16 lines
356 B
C#
16 lines
356 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ApiSoftway.Models
|
|
{
|
|
[Keyless]
|
|
public class Clienti
|
|
{
|
|
public string? antipcon { get; set; }
|
|
public string? ancodice { get; set; }
|
|
public string? andescri { get; set; }
|
|
public string? ancodfis { get; set; }
|
|
public string? anpariva { get; set; }
|
|
|
|
}
|
|
}
|