18 lines
387 B
C#
18 lines
387 B
C#
namespace ManagerService.DTOs
|
|
{
|
|
public class AppConfigurationLinkDTO
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string ConfigurationId { get; set; }
|
|
|
|
public string ApplicationInstanceId { get; set; }
|
|
|
|
public int? Order { get; set; }
|
|
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
public int? WeightMasonryGrid { get; set; }
|
|
}
|
|
}
|