DotBased/DotBased.ASP.Auth/Domains/Identity/GroupItemModel.cs

8 lines
255 B
C#
Raw Normal View History

2024-07-07 17:41:54 +02:00
namespace DotBased.ASP.Auth.Domains.Identity;
public class GroupItemModel
{
public string Id { get; set; } = Guid.NewGuid().ToString();
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}