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; }
|
|
}
|
|
}
|