11 lines
331 B
C#
11 lines
331 B
C#
namespace Compliance.Domain.Models
|
|
{
|
|
public class ReadingPeriodRules
|
|
{
|
|
public int RuleId { get; set; }
|
|
public string? Description { get; set; }
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime EndDate { get; set; }
|
|
public string? ApplicableConsumerGroup { get; set; }
|
|
}
|
|
} |