Primo sviluppo sincronizzazione e migliorie ui
This commit is contained in:
32
Template.Shared/Core/Entity/PtbProsRif.cs
Normal file
32
Template.Shared/Core/Entity/PtbProsRif.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using SQLite;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Template.Shared.Core.Entity;
|
||||
|
||||
[Table("ptb_pros_rif")]
|
||||
public class PtbProsRif
|
||||
{
|
||||
[PrimaryKey, Column("cod_ppro"), JsonPropertyName("codPpro")]
|
||||
public string CodPpro { get; set; }
|
||||
|
||||
[PrimaryKey, Column("id_pers_rif"), JsonPropertyName("idPersRif")]
|
||||
public int IdPersRif { get; set; }
|
||||
|
||||
[Column("persona_rif"), JsonPropertyName("personaRif")]
|
||||
public string PersonaRif { get; set; }
|
||||
|
||||
[Column("e_mail"), JsonPropertyName("eMail")]
|
||||
public string EMail { get; set; }
|
||||
|
||||
[Column("fax"), JsonPropertyName("fax")]
|
||||
public string Fax { get; set; }
|
||||
|
||||
[Column("mansione"), JsonPropertyName("mansione")]
|
||||
public string Mansione { get; set; }
|
||||
|
||||
[Column("num_cellulare"), JsonPropertyName("numCellulare")]
|
||||
public string NumCellulare { get; set; }
|
||||
|
||||
[Column("telefono"), JsonPropertyName("telefono")]
|
||||
public string Telefono { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user