DD.WellWorkover.Cloud/AsbCloudApp/Data/FileCategoryDto.cs

24 lines
579 B
C#
Raw Normal View History

2022-04-11 18:00:34 +05:00
namespace AsbCloudApp.Data
{
#nullable enable
2022-06-02 12:35:51 +05:00
/// <summary>
/// DTO категории файла
/// </summary>
public class FileCategoryDto : IId
{
2022-06-02 12:35:51 +05:00
/// <inheritdoc/>
public int Id { get; set; }
2022-06-02 12:35:51 +05:00
/// <summary>
/// полное название
/// </summary>
public string Name { get; set; } = string.Empty;
2022-06-02 12:35:51 +05:00
/// <summary>
/// сокращенное название
/// </summary>
public string ShortName { get; set; } = string.Empty;
}
#nullable disable
}