14 lines
560 B
C#
14 lines
560 B
C#
namespace Compliance.Domain.Models
|
|
{
|
|
public class Client
|
|
{
|
|
public string SmartCode { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Management { get; set; } = string.Empty;
|
|
public string Unit { get; set; } = string.Empty;
|
|
public string ConsumerGroup { get; set; } = string.Empty;
|
|
public string Subgroup { get; set; } = string.Empty;
|
|
public string SupplyVoltage { get; set; } = string.Empty;
|
|
public bool IsGovernmentEntity { get; set; }
|
|
}
|
|
} |