PresenceApp/domain/Models/GroupEntity.cs

16 lines
327 B
C#
Raw Permalink Normal View History

2024-12-01 16:16:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-12-04 23:32:04 +00:00
namespace domain.Entity
2024-12-01 16:16:14 +00:00
{
2024-12-04 23:32:04 +00:00
public class GroupEntity
2024-12-01 16:16:14 +00:00
{
public int Id { get; set; }
2024-12-04 23:32:04 +00:00
public string Name { get; set; }
public List<UserEntity>? Users { get; set; } = null;
2024-12-01 16:16:14 +00:00
}
}