using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace API_sm.ModelBase { [Table("services")] public class Services { [Key] public int ID { get; set; } public string Title { get; set; } public string Prise { get; set; } } }