0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-web-client.git synced 2025-06-29 18:21:09 +00:00
shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/Role.cs
2023-12-17 22:59:12 +00:00

14 lines
264 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ShoppingAssistantWebClient.Web.Models
{
public class Role
{
public string Id { get; set; }
public string Name { get; set; }
}
}