zadanie/Demo1704/Models/Service.cs
Guitaras_Fingerchpoker 914d43e042 first commit
2025-04-17 05:05:48 +03:00

26 lines
624 B
C#

using System;
using System.Collections.Generic;
namespace Demo1704.Models;
public partial class Service
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public decimal Cost { get; set; }
public int Durationinseconds { get; set; }
public string? Description { get; set; }
public double? Discount { get; set; }
public string? Mainimagepath { get; set; }
public virtual ICollection<Clientservice> Clientservices { get; set; } = new List<Clientservice>();
public virtual ICollection<Servicephoto> Servicephotos { get; set; } = new List<Servicephoto>();
}