20 lines
644 B
C#
20 lines
644 B
C#
|
|
namespace CMSMicroservice.Application.ConfigurationCQ.Queries.GetAllConfigurations;
|
||
|
|
|
||
|
|
public class GetAllConfigurationsResponseDto
|
||
|
|
{
|
||
|
|
public MetaData MetaData { get; set; }
|
||
|
|
public List<GetAllConfigurationsResponseModel> Models { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
public class GetAllConfigurationsResponseModel
|
||
|
|
{
|
||
|
|
public long Id { get; set; }
|
||
|
|
public ConfigurationScope Scope { get; set; }
|
||
|
|
public string Key { get; set; }
|
||
|
|
public string Value { get; set; }
|
||
|
|
public string? Description { get; set; }
|
||
|
|
public bool IsActive { get; set; }
|
||
|
|
public DateTimeOffset Created { get; set; }
|
||
|
|
public DateTimeOffset? LastModified { get; set; }
|
||
|
|
}
|