10 lines
223 B
C#
10 lines
223 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApplicationHub.Domain.Contracts.Authentication.Models;
|
|
|
|
public class Right
|
|
{
|
|
[Key]
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = "";
|
|
} |