using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace GODATA.Models.DropDownData { public class DropDownDataModel { } /// /// This class contain Language properties /// public class LanguageModel { /// /// Get or set Language id /// public int Id { get; set; } /// /// Get or set Language Name /// public string LanguageName { get; set; } /// /// Get or set Language Alias /// public string LanguageAlias { get; set; } } /// /// This class contain Toll Free Sources properties /// public class TollFreeSourceModel { /// /// Get or set Toll Free Source id /// public int Id { get; set; } /// /// Get or set Toll Free Source name /// public string ReasonName { get; set; } /// /// Get or set Toll Free Source alias /// public string ReasonAlias { get; set; } /// /// Get or set Toll Free Source type id /// public string TypeId { get; set; } /// /// Get or set Toll Free Source type alias /// public string TypeAlias { get; set; } } /// /// This class contain Warrenty properties /// public class WarrentyModel { /// /// Get or set Warrenty id /// public int Id { get; set; } /// /// Get or set Warrenty name /// public string ReasonName { get; set; } /// /// Get or set Warrenty alias /// public string ReasonAlias { get; set; } /// /// Get or set Warrenty type id /// public string TypeId { get; set; } /// /// Get or set Warrenty type alias /// public string TypeAlias { get; set; } } /// /// This class contain opportunity lost reason properties /// public class OpportunityLostReasonsModel { /// /// Get or set Warrenty id /// public int Id { get; set; } /// /// Get or set Warrenty name /// public string ReasonName { get; set; } /// /// Get or set Warrenty alias /// public string ReasonAlias { get; set; } /// /// Get or set Warrenty type id /// public string TypeId { get; set; } /// /// Get or set Warrenty type alias /// public string TypeAlias { get; set; } } //----------------------------- added on 25-11-2020 (start) ------------------------------------- /// /// This class contain closed tcket reason properties /// public class TicketClosedReason { /// /// Get or set Warrenty id /// public int Id { get; set; } /// /// Get or set Warrenty name /// public string ReasonName { get; set; } /// /// Get or set Warrenty alias /// public string ReasonAlias { get; set; } /// /// Get or set Warrenty type id /// public string TypeId { get; set; } /// /// Get or set Warrenty type alias /// public string TypeAlias { get; set; } } //----------------------------- added on 25-11-2020 (end) ------------------------------------- /// /// this class contain properties of state details. /// public class EstimateCostModel { /// /// Get or Set id /// public int? Id { get; set; } /// /// Get or Set cost range /// public string CostRange { get; set; } /// /// Get or Set security token /// public string Token { get; set; } /// /// Get or Set message /// public string Message { get; set; } } }