9 lines
214 B
C#
9 lines
214 B
C#
namespace Marco.Pms.Model.Dtos.Directory
|
|
{
|
|
public class CreateBucketDto
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
}
|
|
}
|