Presence_Desktop/Presence.Desktop/ViewModels/GroupPresenter.cs
2024-12-23 14:26:41 +03:00

12 lines
272 B
C#

using System.Collections.Generic;
namespace Presence.Desktop.ViewModels
{
public class GroupPresenter
{
public int Id { get; set; }
public string Name { get; set; }
public IEnumerable<UserPresenter>? users { get; set; } = null;
}
}