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