mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 10:24:21 +01:00
8 lines
255 B
C#
8 lines
255 B
C#
|
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;
|
||
|
}
|