API
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ProcessFlow.cs 609B

123456789101112131415161718192021
  1. using UnivateProperties_API.Model.Timeshare;
  2. namespace UnivateProperties_API.Model.ProcessFlow
  3. {
  4. public class ProcessFlow : BaseEntity
  5. {
  6. public int? TimeshareID { get; set; }
  7. public int? PropertyID { get; set; }
  8. public int StatusID { get; set; }
  9. public virtual TimeshareWeek Timeshare { get; set; }
  10. public virtual Properties.Property Property { get; set; }
  11. public virtual Status Status { get; set; }
  12. public override string ToString()
  13. {
  14. return $"{(TimeshareID ?? PropertyID).Value} - {Status?.Code}";
  15. }
  16. }
  17. }