DD.WellWorkover.Cloud/AsbCloudApp/Data/UserRoleDto.cs
Фролов 30a59d0809 cleanup
2021-09-10 11:28:57 +05:00

12 lines
260 B
C#

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class UserRoleDto : IId
{
public int Id { get; set; }
public string Caption { get; set; }
public virtual ICollection<UserDto> Users { get; set; }
}
}