/
n1kolas
/
VendingUserClient
Обзор
Документация
Войти
/
n1kolas
/
VendingUserClient
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Models/MachinePaymentMethod.cs
14 строк
384 B
Kharchenko Nickolai
Add project files.
13 июн 2025, 20:30
13 июн 2025, 20:30
9f65bf4
Код
Авторство
О чём код?
using System.Text.Json.Serialization; namespace AdminClient.Models { public class MachinePaymentMethod { public long VendingMachineID { get; set; } public long PaymentMethodID { get; set; } [JsonIgnore] public VendingMachine VendingMachine { get; set; } [JsonIgnore] public PaymentMethod PaymentMethod { get; set; } } }