10 lines
225 B
C#
10 lines
225 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApplicationHub.Data.InMemory.Authentication.Entities;
|
|
|
|
public class RightDto
|
|
{
|
|
[Key]
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = "";
|
|
} |