using System.Collections.Generic; using System.Linq; namespace AsbCloudApp.Data.User { /// public class UserExtendedDto : UserDto { /// /// Роли пользователя /// public IEnumerable RoleNames { get; set; } = Enumerable.Empty(); } }