DepartmentProject/DepartmentPortal/Common/ToolsModule/ManagmentEntity/SetBindingModel.cs

16 lines
397 B
C#
Raw Normal View History

using System;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentSecurity;
2022-03-20 10:10:44 +04:00
namespace ToolsModule.ManagmentEntity
{
/// <summary>
/// Сохранение записи по идентификатору
/// </summary>
public class SetBindingModel : AccessBindingModel
{
/// <summary>
/// Идентификатор записи
/// </summary>
2021-04-03 13:41:19 +04:00
public Guid Id { get; set; } = Guid.NewGuid();
}
}