Files
Backend-Api/AccountManagement.Application.Contracts/Role/RoleViewModel.cs
2024-07-05 21:36:15 +03:30

17 lines
350 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountManagement.Application.Contracts.Role
{
public class RoleViewModel
{
public long Id { get; set; }
public string Name { get; set; }
public string CreationDate { get; set; }
}
}