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.

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. }