API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Default.cs 230B

123456789101112
  1. using System.ComponentModel.DataAnnotations;
  2. namespace UnivateProperties_API.Model.Misc
  3. {
  4. public class Default
  5. {
  6. [Key]
  7. public string Id { get; set; }
  8. public string Value { get; set; }
  9. }
  10. }