11 lines
273 B
C#
11 lines
273 B
C#
namespace ConstructorApp.DtoLayer.ServiceDto
|
|
{
|
|
public class UpdateServiceDto
|
|
{
|
|
public int ServiceID { get; set; }
|
|
public string? Title { get; set; }
|
|
public string? SubTitle { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|