BlagodatBogDat/blagodat/Models/Service.cs

18 lines
389 B
C#
Raw Permalink Normal View History

2025-03-10 21:15:26 +00:00
using System;
using System.Collections.Generic;
namespace blagodat.Models;
public partial class Service
{
public int Id { get; set; }
public string SeviceName { get; set; } = null!;
public string CodeService { get; set; } = null!;
public int Cost { get; set; }
public virtual ICollection<OrderService> OrderServices { get; set; } = new List<OrderService>();
}