10 lines
221 B
C#
10 lines
221 B
C#
namespace Marco.Pms.Model.Dtos.Directory
|
|
{
|
|
public class UpdateBucketDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|