Sevice.cs 473 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace kuzminIVProjectWorkOnDemo.Models;
  4. public partial class Sevice
  5. {
  6. public int Id { get; set; }
  7. public string? Title { get; set; }
  8. public string? Image { get; set; }
  9. public int? Duration { get; set; }
  10. public int? Cost { get; set; }
  11. public float? Discount { get; set; }
  12. public virtual ICollection<Sevicesandclient> Sevicesandclients { get; set; } = new List<Sevicesandclient>();
  13. }