123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace kuzminIVProjectWorkOnDemo.Models;
- public partial class Sevice
- {
- public int Id { get; set; }
- public string? Title { get; set; }
- public string? Image { get; set; }
- public int? Duration { get; set; }
- public int? Cost { get; set; }
- public float? Discount { get; set; }
- public virtual ICollection<Sevicesandclient> Sevicesandclients { get; set; } = new List<Sevicesandclient>();
- }
|