11 lines
349 B
C#
11 lines
349 B
C#
namespace Compliance.Domain.Models
|
|
{
|
|
public class DistributedGenerationInfo
|
|
{
|
|
public int codigo { get; set; }
|
|
public string? GenerationType { get; set; }
|
|
public decimal InstalledCapacity { get; set; }
|
|
public string? CompensationMode { get; set; }
|
|
public string? CompensationType { get; set; }
|
|
}
|
|
} |