14 lines
453 B
C#
14 lines
453 B
C#
namespace SoftwayWeb.Models
|
|
{
|
|
public class Personale
|
|
{
|
|
public string? Catcodice { get; set; } = null;
|
|
public string? Catnome { get; set; } = null;
|
|
public string? Cattelefono { get; set; } = null;
|
|
public string? Catcellulare { get; set; } = null;
|
|
public string? Tcuser { get; set; } = null;
|
|
public string? Tcpwd { get; set; } = null;
|
|
public string? Tcruolo { get; set; } = null;
|
|
}
|
|
}
|