Files
Backend-Api/AccountManagement.Application.Contracts/Account/WorkshopSelectList.cs

14 lines
298 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountManagement.Application.Contracts.Account;
public class WorkshopSelectList
{
public long Id { get; set; }
public string WorkshopFullName { get; set; }
}