forked from ddrilling/AsbCloudServer
24 lines
579 B
C#
24 lines
579 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
#nullable enable
|
|
/// <summary>
|
|
/// DTO категории файла
|
|
/// </summary>
|
|
public class FileCategoryDto : IId
|
|
{
|
|
/// <inheritdoc/>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// полное название
|
|
/// </summary>
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// сокращенное название
|
|
/// </summary>
|
|
public string ShortName { get; set; } = string.Empty;
|
|
}
|
|
#nullable disable
|
|
}
|