API
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ListingFee.cs 288B

1234567891011
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace UnivateProperties_API.Model.Financial
  4. {
  5. public class ListingFee : BaseEntity
  6. {
  7. public double Amount {get; set;}
  8. public string Name { get; set; }
  9. }
  10. }