14 lines
298 B
C#
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; }
|
|
} |