/
onimor
/
ASWRemoteViewerRev
Обзор
Документация
Войти
/
onimor
/
ASWRemoteViewerRev
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RemoteViewing/Shared/ASW.RemoteViewing.Shared.Dto/RemoteUser/RemoteUserDto.cs
21 строка
690 B
onimor
Добавьте файлы проекта.
28 авг 2025, 13:00
28 авг 2025, 13:00
855ae9a
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ASW.RemoteViewing.Shared.Dto.RemoteUser; public class RemoteUserDto { public Guid Id { get; set; } public Guid PlaceId { get; set; } public string PlaceName { get; set; } = string.Empty; public Guid UsersId { get; set; } public string Login { get; set; } = string.Empty; public string Role { get; set; } = string.Empty; public string FullFIO { get; set; } = string.Empty; public string ReductionFIO { get; set; } = string.Empty; public Guid ModifiedId { get; set; } = Guid.Empty; public bool IsRemoved { get; set; } }