11 lines
295 B
C#
11 lines
295 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApplicationHub.Domain.Contracts.Authentication.Models;
|
|
|
|
public class Group
|
|
{
|
|
[Key]
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = "";
|
|
public IEnumerable<Right> Rights { get; set; } = new List<Right>();
|
|
} |