Presence_Desktop/Presence.Desktop/ViewModels/GroupPresenter.cs

12 lines
272 B
C#
Raw Permalink Normal View History

2024-12-23 11:26:41 +00:00
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;
}
}