15 lines
277 B
C#
15 lines
277 B
C#
namespace Moonlight.Shared.Admin.Sys.ContainerHelper;
|
|
|
|
public class RequestRebuildDto
|
|
{
|
|
public RequestRebuildDto()
|
|
{
|
|
}
|
|
|
|
public RequestRebuildDto(bool noBuildCache)
|
|
{
|
|
NoBuildCache = noBuildCache;
|
|
}
|
|
|
|
public bool NoBuildCache { get; set; }
|
|
} |