using System.ComponentModel.DataAnnotations;

namespace UnivateProperties_API.Model.Misc
{
    public class Default 
    {
        [Key]
        public string Id { get; set; }

        public string Value { get; set; }
    }
}