Services.cs 327 B

1234567891011121314
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace API_sm.ModelBase
  4. {
  5. [Table("services")]
  6. public class Services
  7. {
  8. [Key]
  9. public int ID { get; set; }
  10. public string Title { get; set; }
  11. public string Prise { get; set; }
  12. }
  13. }