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

20220714125536_MailSource-MailModel.Designer.cs 62KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  1. // <auto-generated />
  2. using System;
  3. using Microsoft.EntityFrameworkCore;
  4. using Microsoft.EntityFrameworkCore.Infrastructure;
  5. using Microsoft.EntityFrameworkCore.Metadata;
  6. using Microsoft.EntityFrameworkCore.Migrations;
  7. using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
  8. using UnivateProperties_API.Context;
  9. namespace UnivateProperties_API.Migrations
  10. {
  11. [DbContext(typeof(DataContext))]
  12. [Migration("20220714125536_MailSource-MailModel")]
  13. partial class MailSourceMailModel
  14. {
  15. protected override void BuildTargetModel(ModelBuilder modelBuilder)
  16. {
  17. #pragma warning disable 612, 618
  18. modelBuilder
  19. .HasAnnotation("ProductVersion", "2.2.0-rtm-35687")
  20. .HasAnnotation("Relational:MaxIdentifierLength", 128)
  21. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  22. modelBuilder.Entity("UnivateProperties_API.Model.Banks.Bank", b =>
  23. {
  24. b.Property<int>("Id")
  25. .ValueGeneratedOnAdd()
  26. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  27. b.Property<DateTime>("Created");
  28. b.Property<bool>("IsDeleted");
  29. b.Property<DateTime>("Modified");
  30. b.Property<string>("ModifiedBy");
  31. b.Property<string>("Name");
  32. b.Property<string>("UniversalBranchCode");
  33. b.HasKey("Id");
  34. b.ToTable("Banks");
  35. });
  36. modelBuilder.Entity("UnivateProperties_API.Model.Banks.BankAccount", b =>
  37. {
  38. b.Property<int>("Id")
  39. .ValueGeneratedOnAdd()
  40. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  41. b.Property<string>("AccountHolder");
  42. b.Property<string>("AccountNumber");
  43. b.Property<int?>("BankId");
  44. b.Property<DateTime>("Created");
  45. b.Property<bool>("IsDeleted");
  46. b.Property<DateTime>("Modified");
  47. b.Property<string>("ModifiedBy");
  48. b.Property<int?>("OwnerId");
  49. b.HasKey("Id");
  50. b.HasIndex("BankId");
  51. b.HasIndex("OwnerId");
  52. b.ToTable("BankAccounts");
  53. });
  54. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.Campaign", b =>
  55. {
  56. b.Property<int>("Id")
  57. .ValueGeneratedOnAdd()
  58. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  59. b.Property<string>("Body");
  60. b.Property<DateTime>("Created");
  61. b.Property<DateTime>("EndDate");
  62. b.Property<bool>("IsDeleted");
  63. b.Property<bool>("IsTimeshare");
  64. b.Property<string>("ItemBody");
  65. b.Property<int>("ItemsPerRow");
  66. b.Property<DateTime>("Modified");
  67. b.Property<string>("ModifiedBy");
  68. b.Property<string>("Name");
  69. b.Property<DateTime>("StartDate");
  70. b.Property<string>("Subject");
  71. b.HasKey("Id");
  72. b.ToTable("Campaigns");
  73. });
  74. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.CampaignItem", b =>
  75. {
  76. b.Property<int>("Id")
  77. .ValueGeneratedOnAdd()
  78. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  79. b.Property<int>("CampaignId");
  80. b.Property<DateTime>("Created");
  81. b.Property<string>("Image");
  82. b.Property<bool>("IsDeleted");
  83. b.Property<DateTime>("Modified");
  84. b.Property<string>("ModifiedBy");
  85. b.Property<int>("PropertyId");
  86. b.Property<int>("WeekId");
  87. b.HasKey("Id");
  88. b.HasIndex("CampaignId");
  89. b.HasIndex("PropertyId");
  90. b.HasIndex("WeekId");
  91. b.ToTable("CampaignItems");
  92. });
  93. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.CampaignItemPlaceHolder", b =>
  94. {
  95. b.Property<int>("Id")
  96. .ValueGeneratedOnAdd()
  97. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  98. b.Property<int>("CampaignItemId");
  99. b.Property<DateTime>("Created");
  100. b.Property<bool>("IsDeleted");
  101. b.Property<DateTime>("Modified");
  102. b.Property<string>("ModifiedBy");
  103. b.Property<string>("PlaceHolder");
  104. b.Property<int?>("PropertyCampaignItemId");
  105. b.Property<string>("Value");
  106. b.HasKey("Id");
  107. b.HasIndex("CampaignItemId");
  108. b.HasIndex("PropertyCampaignItemId");
  109. b.ToTable("CampaignItemPlaceHolders");
  110. });
  111. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.CampaignPlaceHolder", b =>
  112. {
  113. b.Property<int>("Id")
  114. .ValueGeneratedOnAdd()
  115. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  116. b.Property<string>("BoundTo");
  117. b.Property<string>("BoundToClass");
  118. b.Property<string>("BoundToClassDisplay");
  119. b.Property<int>("CampaignId");
  120. b.Property<DateTime>("Created");
  121. b.Property<string>("Format");
  122. b.Property<bool>("IsDeleted");
  123. b.Property<DateTime>("Modified");
  124. b.Property<string>("ModifiedBy");
  125. b.Property<string>("Name");
  126. b.HasKey("Id");
  127. b.HasIndex("CampaignId");
  128. b.ToTable("CampaignPlaceHolders");
  129. });
  130. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.PropertyCampaignItem", b =>
  131. {
  132. b.Property<int>("Id")
  133. .ValueGeneratedOnAdd()
  134. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  135. b.Property<int>("CampaignId");
  136. b.Property<DateTime>("Created");
  137. b.Property<string>("Image");
  138. b.Property<bool>("IsDeleted");
  139. b.Property<DateTime>("Modified");
  140. b.Property<string>("ModifiedBy");
  141. b.Property<int>("PropertyId");
  142. b.HasKey("Id");
  143. b.HasIndex("CampaignId");
  144. b.HasIndex("PropertyId");
  145. b.ToTable("PropertyCampaignItem");
  146. });
  147. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.UploadCampaign", b =>
  148. {
  149. b.Property<int>("Id")
  150. .ValueGeneratedOnAdd()
  151. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  152. b.Property<DateTime>("Created");
  153. b.Property<string>("FileLink");
  154. b.Property<string>("FileName");
  155. b.Property<bool>("IsDeleted");
  156. b.Property<DateTime>("Modified");
  157. b.Property<string>("ModifiedBy");
  158. b.HasKey("Id");
  159. b.ToTable("CampaignUploads");
  160. });
  161. modelBuilder.Entity("UnivateProperties_API.Model.Communication.Email", b =>
  162. {
  163. b.Property<int>("Id")
  164. .ValueGeneratedOnAdd()
  165. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  166. b.Property<string>("BCC");
  167. b.Property<string>("Body");
  168. b.Property<string>("CC");
  169. b.Property<string>("Comment");
  170. b.Property<DateTime>("Created");
  171. b.Property<bool>("IsBodyHtml");
  172. b.Property<bool>("IsDeleted");
  173. b.Property<DateTime>("Modified");
  174. b.Property<string>("ModifiedBy");
  175. b.Property<int>("SenderId");
  176. b.Property<string>("Subject");
  177. b.Property<string>("To");
  178. b.Property<string>("ToDisplay");
  179. b.HasKey("Id");
  180. b.HasIndex("SenderId");
  181. b.ToTable("Emails");
  182. });
  183. modelBuilder.Entity("UnivateProperties_API.Model.Communication.MailModel", b =>
  184. {
  185. b.Property<int>("Id")
  186. .ValueGeneratedOnAdd()
  187. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  188. b.Property<string>("ComType");
  189. b.Property<DateTime>("Created");
  190. b.Property<string>("Email");
  191. b.Property<string>("Error");
  192. b.Property<string>("FromAddress");
  193. b.Property<string>("HeardFrom");
  194. b.Property<bool>("IsDeleted");
  195. b.Property<int>("MailSourceId");
  196. b.Property<string>("Message");
  197. b.Property<DateTime>("Modified");
  198. b.Property<string>("ModifiedBy");
  199. b.Property<string>("Name");
  200. b.Property<string>("Phone");
  201. b.Property<string>("Property");
  202. b.Property<string>("ToAddress");
  203. b.HasKey("Id");
  204. b.HasIndex("MailSourceId");
  205. b.ToTable("CommunicationLog");
  206. });
  207. modelBuilder.Entity("UnivateProperties_API.Model.Communication.MailRecipient", b =>
  208. {
  209. b.Property<int>("Id")
  210. .ValueGeneratedOnAdd()
  211. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  212. b.Property<DateTime>("Created");
  213. b.Property<bool>("IsDeleted");
  214. b.Property<DateTime>("Modified");
  215. b.Property<string>("ModifiedBy");
  216. b.Property<string>("RecipientMail");
  217. b.Property<string>("RecipientName");
  218. b.Property<string>("RecipientUsage");
  219. b.HasKey("Id");
  220. b.ToTable("MailRecipients");
  221. });
  222. modelBuilder.Entity("UnivateProperties_API.Model.Communication.MailSource", b =>
  223. {
  224. b.Property<int>("Id")
  225. .ValueGeneratedOnAdd()
  226. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  227. b.Property<DateTime>("Created");
  228. b.Property<string>("Description");
  229. b.Property<bool>("IsDeleted");
  230. b.Property<DateTime>("Modified");
  231. b.Property<string>("ModifiedBy");
  232. b.HasKey("Id");
  233. b.ToTable("MailSource");
  234. });
  235. modelBuilder.Entity("UnivateProperties_API.Model.Communication.PlaceHolder", b =>
  236. {
  237. b.Property<int>("Id")
  238. .ValueGeneratedOnAdd()
  239. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  240. b.Property<string>("BoundTo");
  241. b.Property<string>("BoundToClass");
  242. b.Property<string>("BoundToClassDisplay");
  243. b.Property<DateTime>("Created");
  244. b.Property<bool>("IsDeleted");
  245. b.Property<DateTime>("Modified");
  246. b.Property<string>("ModifiedBy");
  247. b.Property<string>("Name");
  248. b.Property<int>("TemplateId");
  249. b.HasKey("Id");
  250. b.HasIndex("TemplateId");
  251. b.ToTable("PlaceHolders");
  252. });
  253. modelBuilder.Entity("UnivateProperties_API.Model.Communication.SMTPAccount", b =>
  254. {
  255. b.Property<int>("Id")
  256. .ValueGeneratedOnAdd()
  257. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  258. b.Property<string>("Address");
  259. b.Property<DateTime>("Created");
  260. b.Property<bool>("Default");
  261. b.Property<string>("DisplayName");
  262. b.Property<bool>("IsDeleted");
  263. b.Property<DateTime>("Modified");
  264. b.Property<string>("ModifiedBy");
  265. b.Property<int>("SMTPHostId");
  266. b.HasKey("Id");
  267. b.HasIndex("SMTPHostId");
  268. b.ToTable("Accounts");
  269. });
  270. modelBuilder.Entity("UnivateProperties_API.Model.Communication.SMTPHost", b =>
  271. {
  272. b.Property<int>("Id")
  273. .ValueGeneratedOnAdd()
  274. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  275. b.Property<DateTime>("Created");
  276. b.Property<string>("Host");
  277. b.Property<bool>("IsDeleted");
  278. b.Property<DateTime>("Modified");
  279. b.Property<string>("ModifiedBy");
  280. b.Property<bool>("NeedsAuthorize");
  281. b.Property<string>("Password");
  282. b.Property<bool>("UseSSL");
  283. b.Property<string>("User");
  284. b.HasKey("Id");
  285. b.ToTable("Hosts");
  286. });
  287. modelBuilder.Entity("UnivateProperties_API.Model.Communication.Template", b =>
  288. {
  289. b.Property<int>("Id")
  290. .ValueGeneratedOnAdd()
  291. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  292. b.Property<string>("Body");
  293. b.Property<DateTime>("Created");
  294. b.Property<bool>("IsDeleted");
  295. b.Property<DateTime>("Modified");
  296. b.Property<string>("ModifiedBy");
  297. b.Property<string>("Name");
  298. b.Property<int?>("SenderId");
  299. b.Property<string>("Subject");
  300. b.HasKey("Id");
  301. b.HasIndex("SenderId");
  302. b.ToTable("Templates");
  303. });
  304. modelBuilder.Entity("UnivateProperties_API.Model.Financial.ListingFee", b =>
  305. {
  306. b.Property<int>("Id")
  307. .ValueGeneratedOnAdd()
  308. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  309. b.Property<double>("Amount");
  310. b.Property<DateTime>("Created");
  311. b.Property<bool>("IsDeleted");
  312. b.Property<DateTime>("Modified");
  313. b.Property<string>("ModifiedBy");
  314. b.Property<string>("Name");
  315. b.HasKey("Id");
  316. b.ToTable("ListingFees");
  317. });
  318. modelBuilder.Entity("UnivateProperties_API.Model.Financial.Payment", b =>
  319. {
  320. b.Property<int>("Id")
  321. .ValueGeneratedOnAdd()
  322. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  323. b.Property<decimal>("Amount");
  324. b.Property<string>("Checksum");
  325. b.Property<DateTime>("Created");
  326. b.Property<int?>("CreatedById");
  327. b.Property<bool>("IsDeleted");
  328. b.Property<DateTime>("Modified");
  329. b.Property<string>("ModifiedBy");
  330. b.Property<string>("PayRequestId");
  331. b.Property<string>("PaymentStatus");
  332. b.Property<string>("PaymentToken");
  333. b.Property<int?>("PropertyId");
  334. b.Property<int?>("TimeshareWeekId");
  335. b.HasKey("Id");
  336. b.HasIndex("CreatedById");
  337. b.HasIndex("PropertyId");
  338. b.HasIndex("TimeshareWeekId");
  339. b.ToTable("Payments");
  340. });
  341. modelBuilder.Entity("UnivateProperties_API.Model.Logging.SearchLog", b =>
  342. {
  343. b.Property<int>("Id")
  344. .ValueGeneratedOnAdd()
  345. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  346. b.Property<DateTime>("Created");
  347. b.Property<bool>("IsDeleted");
  348. b.Property<DateTime>("Modified");
  349. b.Property<string>("ModifiedBy");
  350. b.Property<string>("Search");
  351. b.Property<string>("Type");
  352. b.HasKey("Id");
  353. b.ToTable("SearchLogs");
  354. });
  355. modelBuilder.Entity("UnivateProperties_API.Model.Misc.Address", b =>
  356. {
  357. b.Property<int>("Id")
  358. .ValueGeneratedOnAdd()
  359. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  360. b.Property<string>("City");
  361. b.Property<DateTime>("Created");
  362. b.Property<bool>("IsDeleted");
  363. b.Property<DateTime>("Modified");
  364. b.Property<string>("ModifiedBy");
  365. b.Property<int?>("OwnerId");
  366. b.Property<string>("PostalCode");
  367. b.Property<string>("Province");
  368. b.Property<string>("Street");
  369. b.Property<string>("StreetNumber");
  370. b.Property<string>("Suburb");
  371. b.HasKey("Id");
  372. b.HasIndex("OwnerId");
  373. b.ToTable("Addresses");
  374. });
  375. modelBuilder.Entity("UnivateProperties_API.Model.Misc.Carousel", b =>
  376. {
  377. b.Property<int>("Id")
  378. .ValueGeneratedOnAdd()
  379. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  380. b.Property<DateTime>("Created");
  381. b.Property<string>("Header");
  382. b.Property<string>("Image");
  383. b.Property<bool>("IsDeleted");
  384. b.Property<DateTime>("Modified");
  385. b.Property<string>("ModifiedBy");
  386. b.Property<int>("PropertyId");
  387. b.Property<int>("TimeshareId");
  388. b.HasKey("Id");
  389. b.ToTable("Carousel");
  390. });
  391. modelBuilder.Entity("UnivateProperties_API.Model.Misc.Default", b =>
  392. {
  393. b.Property<string>("Id")
  394. .ValueGeneratedOnAdd();
  395. b.Property<string>("Value");
  396. b.HasKey("Id");
  397. b.ToTable("Defaults");
  398. });
  399. modelBuilder.Entity("UnivateProperties_API.Model.Misc.Location", b =>
  400. {
  401. b.Property<int>("Id")
  402. .ValueGeneratedOnAdd()
  403. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  404. b.Property<DateTime>("Created");
  405. b.Property<bool>("IsDeleted");
  406. b.Property<bool>("IsTesting");
  407. b.Property<DateTime>("Modified");
  408. b.Property<string>("ModifiedBy");
  409. b.Property<string>("PropertyImageLocation");
  410. b.Property<string>("SiteURL");
  411. b.HasKey("Id");
  412. b.ToTable("Location");
  413. });
  414. modelBuilder.Entity("UnivateProperties_API.Model.Misc.PlaceHolderFormat", b =>
  415. {
  416. b.Property<int>("Id")
  417. .ValueGeneratedOnAdd()
  418. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  419. b.Property<DateTime>("Created");
  420. b.Property<string>("DisplayName");
  421. b.Property<string>("Format");
  422. b.Property<bool>("IsDeleted");
  423. b.Property<DateTime>("Modified");
  424. b.Property<string>("ModifiedBy");
  425. b.HasKey("Id");
  426. b.ToTable("PlaceHolderFormats");
  427. });
  428. modelBuilder.Entity("UnivateProperties_API.Model.Misc.TC", b =>
  429. {
  430. b.Property<int>("Id")
  431. .ValueGeneratedOnAdd()
  432. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  433. b.Property<DateTime>("Created");
  434. b.Property<bool>("IsDeleted");
  435. b.Property<DateTime>("Modified");
  436. b.Property<string>("ModifiedBy");
  437. b.Property<string>("TermsConditions");
  438. b.Property<string>("Version");
  439. b.HasKey("Id");
  440. b.ToTable("TermsConditions");
  441. });
  442. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.BidItem", b =>
  443. {
  444. b.Property<int>("Id")
  445. .ValueGeneratedOnAdd()
  446. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  447. b.Property<double>("Amount");
  448. b.Property<int?>("BidMakerId");
  449. b.Property<string>("Comment");
  450. b.Property<DateTime>("Created");
  451. b.Property<string>("DeclinedReason");
  452. b.Property<bool>("IsDeleted");
  453. b.Property<DateTime>("Modified");
  454. b.Property<string>("ModifiedBy");
  455. b.Property<int?>("PropertyId");
  456. b.Property<int?>("StatusId");
  457. b.Property<int?>("TimeshareWeekId");
  458. b.HasKey("Id");
  459. b.HasIndex("BidMakerId");
  460. b.HasIndex("PropertyId");
  461. b.HasIndex("StatusId");
  462. b.HasIndex("TimeshareWeekId");
  463. b.ToTable("BidItems");
  464. });
  465. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.ProcessFlow", b =>
  466. {
  467. b.Property<int>("Id")
  468. .ValueGeneratedOnAdd()
  469. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  470. b.Property<DateTime>("Created");
  471. b.Property<bool>("IsDeleted");
  472. b.Property<DateTime>("Modified");
  473. b.Property<string>("ModifiedBy");
  474. b.Property<int?>("PropertyID");
  475. b.Property<int>("StatusID");
  476. b.Property<int?>("TimeshareID");
  477. b.HasKey("Id");
  478. b.HasIndex("PropertyID");
  479. b.HasIndex("StatusID");
  480. b.HasIndex("TimeshareID");
  481. b.ToTable("ProcessFlows");
  482. });
  483. modelBuilder.Entity("UnivateProperties_API.Model.Properties.Property", b =>
  484. {
  485. b.Property<int>("Id")
  486. .ValueGeneratedOnAdd()
  487. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  488. b.Property<string>("AddressOther");
  489. b.Property<string>("AddressURL");
  490. b.Property<int?>("AgencyId");
  491. b.Property<int?>("AgentId");
  492. b.Property<string>("City");
  493. b.Property<string>("Country");
  494. b.Property<DateTime>("Created");
  495. b.Property<DateTime>("CutOffDisplayDate");
  496. b.Property<DateTime>("DateAvailable");
  497. b.Property<DateTime>("DatePublished");
  498. b.Property<string>("Description");
  499. b.Property<bool>("IsDeleted");
  500. b.Property<bool>("IsSale");
  501. b.Property<DateTime>("Modified");
  502. b.Property<string>("ModifiedBy");
  503. b.Property<decimal>("OperationalCosts");
  504. b.Property<int?>("OwnerId");
  505. b.Property<string>("PostalCode");
  506. b.Property<decimal>("Price");
  507. b.Property<string>("PricePer");
  508. b.Property<bool>("PriceRedused");
  509. b.Property<string>("PropertCoords");
  510. b.Property<string>("PropertyName");
  511. b.Property<string>("PropertyRef");
  512. b.Property<int>("PropertyTypeId");
  513. b.Property<string>("Province");
  514. b.Property<bool>("Published");
  515. b.Property<string>("ShortDescription");
  516. b.Property<bool>("ShowAddress");
  517. b.Property<DateTime>("StatusDate");
  518. b.Property<int?>("StatusId");
  519. b.Property<string>("StreetName");
  520. b.Property<string>("StreetNumber");
  521. b.Property<string>("Suburb");
  522. b.Property<string>("Unit");
  523. b.Property<string>("Video");
  524. b.Property<string>("VirtualTour");
  525. b.HasKey("Id");
  526. b.HasIndex("AgencyId");
  527. b.HasIndex("AgentId");
  528. b.HasIndex("OwnerId");
  529. b.HasIndex("PropertyTypeId");
  530. b.ToTable("Properties");
  531. });
  532. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyImage", b =>
  533. {
  534. b.Property<int>("Id")
  535. .ValueGeneratedOnAdd()
  536. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  537. b.Property<DateTime>("Created");
  538. b.Property<string>("Image");
  539. b.Property<bool>("IsDefault");
  540. b.Property<bool>("IsDeleted");
  541. b.Property<DateTime>("Modified");
  542. b.Property<string>("ModifiedBy");
  543. b.Property<int>("PropertyId");
  544. b.HasKey("Id");
  545. b.HasIndex("PropertyId");
  546. b.ToTable("PropertyImages");
  547. });
  548. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyType", b =>
  549. {
  550. b.Property<int>("Id")
  551. .ValueGeneratedOnAdd()
  552. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  553. b.Property<DateTime>("Created");
  554. b.Property<string>("Description");
  555. b.Property<bool>("IsDeleted");
  556. b.Property<DateTime>("Modified");
  557. b.Property<string>("ModifiedBy");
  558. b.Property<int>("UsageType");
  559. b.HasKey("Id");
  560. b.ToTable("PropertyTypes");
  561. });
  562. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyUserField", b =>
  563. {
  564. b.Property<int>("Id")
  565. .ValueGeneratedOnAdd()
  566. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  567. b.Property<DateTime>("Created");
  568. b.Property<string>("Description");
  569. b.Property<bool>("IsDeleted");
  570. b.Property<DateTime>("Modified");
  571. b.Property<string>("ModifiedBy");
  572. b.Property<int>("PropertyId");
  573. b.Property<int>("UserDefinedFieldId");
  574. b.Property<string>("Value");
  575. b.HasKey("Id");
  576. b.HasIndex("PropertyId");
  577. b.HasIndex("UserDefinedFieldId");
  578. b.ToTable("PropertyUserFields");
  579. });
  580. modelBuilder.Entity("UnivateProperties_API.Model.Properties.UserDefinedField", b =>
  581. {
  582. b.Property<int>("Id")
  583. .ValueGeneratedOnAdd()
  584. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  585. b.Property<DateTime>("Created");
  586. b.Property<string>("FieldName");
  587. b.Property<string>("FieldType");
  588. b.Property<int>("GroupId");
  589. b.Property<bool>("IsDeleted");
  590. b.Property<DateTime>("Modified");
  591. b.Property<string>("ModifiedBy");
  592. b.Property<int>("Rank");
  593. b.HasKey("Id");
  594. b.HasIndex("GroupId");
  595. b.ToTable("UserDefinedFields");
  596. });
  597. modelBuilder.Entity("UnivateProperties_API.Model.Properties.UserDefinedGroup", b =>
  598. {
  599. b.Property<int>("Id")
  600. .ValueGeneratedOnAdd()
  601. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  602. b.Property<DateTime>("Created");
  603. b.Property<string>("Description");
  604. b.Property<bool>("IsDeleted");
  605. b.Property<DateTime>("Modified");
  606. b.Property<string>("ModifiedBy");
  607. b.Property<int>("Rank");
  608. b.Property<int>("UsageType");
  609. b.HasKey("Id");
  610. b.ToTable("UserDefinedGroups");
  611. });
  612. modelBuilder.Entity("UnivateProperties_API.Model.Region.City", b =>
  613. {
  614. b.Property<int>("Id")
  615. .ValueGeneratedOnAdd()
  616. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  617. b.Property<string>("Code");
  618. b.Property<DateTime>("Created");
  619. b.Property<string>("Description");
  620. b.Property<bool>("IsDeleted");
  621. b.Property<DateTime>("Modified");
  622. b.Property<string>("ModifiedBy");
  623. b.Property<int>("ProvinceId");
  624. b.HasKey("Id");
  625. b.HasIndex("ProvinceId");
  626. b.ToTable("Cities");
  627. });
  628. modelBuilder.Entity("UnivateProperties_API.Model.Region.Province", b =>
  629. {
  630. b.Property<int>("Id")
  631. .ValueGeneratedOnAdd()
  632. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  633. b.Property<string>("Code");
  634. b.Property<DateTime>("Created");
  635. b.Property<string>("Description");
  636. b.Property<bool>("IsDeleted");
  637. b.Property<DateTime>("Modified");
  638. b.Property<string>("ModifiedBy");
  639. b.HasKey("Id");
  640. b.ToTable("Provinces");
  641. });
  642. modelBuilder.Entity("UnivateProperties_API.Model.Region.Suburb", b =>
  643. {
  644. b.Property<int>("Id")
  645. .ValueGeneratedOnAdd()
  646. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  647. b.Property<int>("CityId");
  648. b.Property<DateTime>("Created");
  649. b.Property<string>("Description");
  650. b.Property<bool>("IsDeleted");
  651. b.Property<DateTime>("Modified");
  652. b.Property<string>("ModifiedBy");
  653. b.Property<string>("PostalCode");
  654. b.HasKey("Id");
  655. b.HasIndex("CityId");
  656. b.ToTable("Suburbs");
  657. });
  658. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.Season", b =>
  659. {
  660. b.Property<int>("Id")
  661. .ValueGeneratedOnAdd()
  662. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  663. b.Property<DateTime>("Created");
  664. b.Property<bool>("IsDeleted");
  665. b.Property<DateTime>("Modified");
  666. b.Property<string>("ModifiedBy");
  667. b.Property<string>("Name");
  668. b.HasKey("Id");
  669. b.ToTable("Seasons");
  670. });
  671. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.Status", b =>
  672. {
  673. b.Property<int>("Id")
  674. .ValueGeneratedOnAdd()
  675. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  676. b.Property<string>("Code");
  677. b.Property<DateTime>("Created");
  678. b.Property<string>("Description");
  679. b.Property<bool>("IsDeleted");
  680. b.Property<DateTime>("Modified");
  681. b.Property<string>("ModifiedBy");
  682. b.Property<int>("StatusType");
  683. b.HasKey("Id");
  684. b.ToTable("Status");
  685. });
  686. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.TimeshareWeek", b =>
  687. {
  688. b.Property<int>("Id")
  689. .ValueGeneratedOnAdd()
  690. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  691. b.Property<int?>("AgencyId");
  692. b.Property<bool>("AgentAsRep");
  693. b.Property<double>("AgentCommision");
  694. b.Property<int?>("AgentId");
  695. b.Property<DateTime>("ArrivalDate");
  696. b.Property<double>("AskingPrice");
  697. b.Property<string>("BankedWith");
  698. b.Property<string>("Bedrooms");
  699. b.Property<DateTime>("Created");
  700. b.Property<bool>("CurrentYearBanked");
  701. b.Property<bool>("CustomOwner");
  702. b.Property<DateTime>("DateMandated");
  703. b.Property<DateTime>("DepartureDate");
  704. b.Property<string>("DisplayOwner");
  705. b.Property<bool>("IsDeleted");
  706. b.Property<bool>("LeviesPaidInFull");
  707. b.Property<double>("LevyAmount");
  708. b.Property<bool>("Mandate");
  709. b.Property<int>("MaxSleep");
  710. b.Property<DateTime>("Modified");
  711. b.Property<string>("ModifiedBy");
  712. b.Property<string>("Module");
  713. b.Property<DateTime>("OriginalPurchaseDate");
  714. b.Property<double>("OriginalPurchasePrice");
  715. b.Property<bool>("OtherResort");
  716. b.Property<string>("OtherResortName");
  717. b.Property<int>("OwnerId");
  718. b.Property<bool>("Publish");
  719. b.Property<DateTime>("PulbishedDate");
  720. b.Property<bool>("ReferedByAgent");
  721. b.Property<int>("RegionId");
  722. b.Property<string>("ResortCode");
  723. b.Property<string>("ResortName");
  724. b.Property<string>("Season");
  725. b.Property<double>("SellPrice");
  726. b.Property<int>("StatusId");
  727. b.Property<string>("UnitNumber");
  728. b.Property<string>("WeekNumber");
  729. b.Property<bool>("WeekPlacedForRental");
  730. b.Property<string>("WeekStatus");
  731. b.Property<int>("WeekType");
  732. b.HasKey("Id");
  733. b.HasIndex("AgencyId");
  734. b.HasIndex("AgentId");
  735. b.HasIndex("OwnerId");
  736. b.HasIndex("RegionId");
  737. b.HasIndex("StatusId");
  738. b.ToTable("Weeks");
  739. });
  740. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfiguration", b =>
  741. {
  742. b.Property<int>("Id")
  743. .ValueGeneratedOnAdd()
  744. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  745. b.Property<int>("Adults");
  746. b.Property<int>("Bedrooms");
  747. b.Property<int>("Children");
  748. b.Property<string>("Code");
  749. b.Property<DateTime>("Created");
  750. b.Property<bool>("IsDeleted");
  751. b.Property<DateTime>("Modified");
  752. b.Property<string>("ModifiedBy");
  753. b.HasKey("Id");
  754. b.HasIndex("Code")
  755. .IsUnique()
  756. .HasFilter("[Code] IS NOT NULL");
  757. b.ToTable("UnitConfigurations");
  758. });
  759. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfigurationType", b =>
  760. {
  761. b.Property<int>("Id")
  762. .ValueGeneratedOnAdd()
  763. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  764. b.Property<DateTime>("Created");
  765. b.Property<string>("Description");
  766. b.Property<bool>("IsDeleted");
  767. b.Property<DateTime>("Modified");
  768. b.Property<string>("ModifiedBy");
  769. b.Property<int>("UnitConfigurationId");
  770. b.HasKey("Id");
  771. b.HasIndex("UnitConfigurationId");
  772. b.ToTable("UnitConfigurationTypes");
  773. });
  774. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agency", b =>
  775. {
  776. b.Property<int>("Id")
  777. .ValueGeneratedOnAdd()
  778. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  779. b.Property<string>("AgencyName");
  780. b.Property<string>("CompanyRegNumber");
  781. b.Property<DateTime>("Created");
  782. b.Property<string>("EAABEFFCNumber");
  783. b.Property<bool>("IsDeleted");
  784. b.Property<DateTime>("Modified");
  785. b.Property<string>("ModifiedBy");
  786. b.HasKey("Id");
  787. b.ToTable("Agencies");
  788. });
  789. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agent", b =>
  790. {
  791. b.Property<int>("Id")
  792. .ValueGeneratedOnAdd()
  793. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  794. b.Property<int?>("AgencyId");
  795. b.Property<string>("CellNumber");
  796. b.Property<DateTime>("Created");
  797. b.Property<string>("Email");
  798. b.Property<bool>("IsDeleted");
  799. b.Property<DateTime>("Modified");
  800. b.Property<string>("ModifiedBy");
  801. b.Property<string>("Name");
  802. b.Property<string>("Surname");
  803. b.Property<string>("Telephone");
  804. b.Property<int?>("TemplateId");
  805. b.Property<int?>("UserId");
  806. b.HasKey("Id");
  807. b.HasIndex("AgencyId");
  808. b.HasIndex("TemplateId");
  809. b.HasIndex("UserId");
  810. b.ToTable("Agents");
  811. });
  812. modelBuilder.Entity("UnivateProperties_API.Model.Users.Individual", b =>
  813. {
  814. b.Property<int>("Id")
  815. .ValueGeneratedOnAdd()
  816. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  817. b.Property<int?>("AddressId");
  818. b.Property<int?>("BankAccountId");
  819. b.Property<string>("CellNumber");
  820. b.Property<string>("CompanyRegNumber");
  821. b.Property<DateTime>("Created");
  822. b.Property<string>("Email");
  823. b.Property<int>("HowMarried");
  824. b.Property<string>("IdNumber");
  825. b.Property<string>("IncomeTaxNumber");
  826. b.Property<bool>("IsDeleted");
  827. b.Property<DateTime>("Modified");
  828. b.Property<string>("ModifiedBy");
  829. b.Property<string>("Name");
  830. b.Property<string>("SpouseCellnumber");
  831. b.Property<string>("SpouseEmail");
  832. b.Property<string>("SpouseName");
  833. b.Property<string>("SpouseSurname");
  834. b.Property<string>("SpouseTelephone");
  835. b.Property<string>("Surname");
  836. b.Property<string>("Telephone");
  837. b.Property<int?>("TemplateId");
  838. b.Property<int?>("UserId");
  839. b.HasKey("Id");
  840. b.HasIndex("AddressId");
  841. b.HasIndex("BankAccountId");
  842. b.HasIndex("TemplateId");
  843. b.HasIndex("UserId");
  844. b.HasIndex("Telephone", "CellNumber", "Email")
  845. .IsUnique()
  846. .HasFilter("[Telephone] IS NOT NULL AND [CellNumber] IS NOT NULL AND [Email] IS NOT NULL");
  847. b.ToTable("Individuals");
  848. });
  849. modelBuilder.Entity("UnivateProperties_API.Model.Users.NonRegIndividual", b =>
  850. {
  851. b.Property<int>("Id")
  852. .ValueGeneratedOnAdd()
  853. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  854. b.Property<string>("CellNumber");
  855. b.Property<string>("CompanyRegNumber");
  856. b.Property<DateTime>("Created");
  857. b.Property<string>("EmailAddress");
  858. b.Property<int>("HowMarried");
  859. b.Property<string>("IDNumber");
  860. b.Property<bool>("IsDeleted");
  861. b.Property<DateTime>("Modified");
  862. b.Property<string>("ModifiedBy");
  863. b.Property<string>("Name");
  864. b.Property<string>("SpouseCellnumber");
  865. b.Property<string>("SpouseEmail");
  866. b.Property<string>("SpouseName");
  867. b.Property<string>("SpouseSurname");
  868. b.Property<string>("SpouseTelephone");
  869. b.Property<string>("Surname");
  870. b.Property<string>("TelephoneNumber");
  871. b.Property<int?>("WeekId");
  872. b.HasKey("Id");
  873. b.ToTable("NonRegIndividuals");
  874. });
  875. modelBuilder.Entity("UnivateProperties_API.Model.Users.Person", b =>
  876. {
  877. b.Property<int>("Id")
  878. .ValueGeneratedOnAdd()
  879. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  880. b.Property<string>("CellNumber");
  881. b.Property<DateTime>("Created");
  882. b.Property<string>("Email");
  883. b.Property<bool>("IsDeleted");
  884. b.Property<DateTime>("Modified");
  885. b.Property<string>("ModifiedBy");
  886. b.Property<string>("Name");
  887. b.Property<string>("Surname");
  888. b.Property<string>("Telephone");
  889. b.Property<int?>("UserId");
  890. b.HasKey("Id");
  891. b.HasIndex("UserId");
  892. b.ToTable("Person");
  893. });
  894. modelBuilder.Entity("UnivateProperties_API.Model.Users.User", b =>
  895. {
  896. b.Property<int>("Id")
  897. .ValueGeneratedOnAdd()
  898. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  899. b.Property<bool>("AcceptedTerms");
  900. b.Property<DateTime>("Created");
  901. b.Property<string>("FPToken");
  902. b.Property<bool>("IsDeleted");
  903. b.Property<bool>("LoginPasswordChange");
  904. b.Property<DateTime>("Modified");
  905. b.Property<string>("ModifiedBy");
  906. b.Property<byte[]>("PasswordHash");
  907. b.Property<byte[]>("PasswordSalt");
  908. b.Property<string>("Role");
  909. b.Property<string>("Token");
  910. b.Property<string>("Username");
  911. b.Property<bool>("Verified");
  912. b.HasKey("Id");
  913. b.HasIndex("Username")
  914. .IsUnique()
  915. .HasFilter("[Username] IS NOT NULL");
  916. b.ToTable("Users");
  917. });
  918. modelBuilder.Entity("UnivateProperties_API.Model.Users.UserRole", b =>
  919. {
  920. b.Property<int>("Id")
  921. .ValueGeneratedOnAdd()
  922. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  923. b.Property<DateTime>("Created");
  924. b.Property<bool>("IsDeleted");
  925. b.Property<DateTime>("Modified");
  926. b.Property<string>("ModifiedBy");
  927. b.Property<string>("RoleDescription");
  928. b.Property<string>("RoleName");
  929. b.HasKey("Id");
  930. b.ToTable("Roles");
  931. });
  932. modelBuilder.Entity("UnivateProperties_API.Model.Banks.BankAccount", b =>
  933. {
  934. b.HasOne("UnivateProperties_API.Model.Banks.Bank", "Bank")
  935. .WithMany()
  936. .HasForeignKey("BankId");
  937. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  938. .WithMany()
  939. .HasForeignKey("OwnerId");
  940. });
  941. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.CampaignItem", b =>
  942. {
  943. b.HasOne("UnivateProperties_API.Model.Campaigns.Campaign", "Campaign")
  944. .WithMany("Items")
  945. .HasForeignKey("CampaignId")
  946. .OnDelete(DeleteBehavior.Cascade);
  947. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  948. .WithMany()
  949. .HasForeignKey("PropertyId")
  950. .OnDelete(DeleteBehavior.Cascade);
  951. b.HasOne("UnivateProperties_API.Model.Timeshare.TimeshareWeek", "Week")
  952. .WithMany()
  953. .HasForeignKey("WeekId")
  954. .OnDelete(DeleteBehavior.Cascade);
  955. });
  956. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.CampaignItemPlaceHolder", b =>
  957. {
  958. b.HasOne("UnivateProperties_API.Model.Campaigns.CampaignItem", "CampaignItem")
  959. .WithMany("CampaignItemPlaceHolder")
  960. .HasForeignKey("CampaignItemId")
  961. .OnDelete(DeleteBehavior.Cascade);
  962. b.HasOne("UnivateProperties_API.Model.Campaigns.PropertyCampaignItem")
  963. .WithMany("CampaignItemPlaceHolder")
  964. .HasForeignKey("PropertyCampaignItemId");
  965. });
  966. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.CampaignPlaceHolder", b =>
  967. {
  968. b.HasOne("UnivateProperties_API.Model.Campaigns.Campaign", "Campaign")
  969. .WithMany("PlaceHolders")
  970. .HasForeignKey("CampaignId")
  971. .OnDelete(DeleteBehavior.Cascade);
  972. });
  973. modelBuilder.Entity("UnivateProperties_API.Model.Campaigns.PropertyCampaignItem", b =>
  974. {
  975. b.HasOne("UnivateProperties_API.Model.Campaigns.Campaign", "Campaign")
  976. .WithMany("PropertyItems")
  977. .HasForeignKey("CampaignId")
  978. .OnDelete(DeleteBehavior.Cascade);
  979. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  980. .WithMany()
  981. .HasForeignKey("PropertyId")
  982. .OnDelete(DeleteBehavior.Cascade);
  983. });
  984. modelBuilder.Entity("UnivateProperties_API.Model.Communication.Email", b =>
  985. {
  986. b.HasOne("UnivateProperties_API.Model.Communication.SMTPAccount", "Sender")
  987. .WithMany("Emails")
  988. .HasForeignKey("SenderId")
  989. .OnDelete(DeleteBehavior.Cascade);
  990. });
  991. modelBuilder.Entity("UnivateProperties_API.Model.Communication.MailModel", b =>
  992. {
  993. b.HasOne("UnivateProperties_API.Model.Communication.MailSource", "MailSource")
  994. .WithMany("MailModels")
  995. .HasForeignKey("MailSourceId")
  996. .OnDelete(DeleteBehavior.Cascade);
  997. });
  998. modelBuilder.Entity("UnivateProperties_API.Model.Communication.PlaceHolder", b =>
  999. {
  1000. b.HasOne("UnivateProperties_API.Model.Communication.Template", "Template")
  1001. .WithMany("PlaceHolders")
  1002. .HasForeignKey("TemplateId")
  1003. .OnDelete(DeleteBehavior.Cascade);
  1004. });
  1005. modelBuilder.Entity("UnivateProperties_API.Model.Communication.SMTPAccount", b =>
  1006. {
  1007. b.HasOne("UnivateProperties_API.Model.Communication.SMTPHost", "SMTPHost")
  1008. .WithMany("SMTPAccounts")
  1009. .HasForeignKey("SMTPHostId")
  1010. .OnDelete(DeleteBehavior.Cascade);
  1011. });
  1012. modelBuilder.Entity("UnivateProperties_API.Model.Communication.Template", b =>
  1013. {
  1014. b.HasOne("UnivateProperties_API.Model.Communication.SMTPAccount", "Sender")
  1015. .WithMany("Templates")
  1016. .HasForeignKey("SenderId");
  1017. });
  1018. modelBuilder.Entity("UnivateProperties_API.Model.Financial.Payment", b =>
  1019. {
  1020. b.HasOne("UnivateProperties_API.Model.Users.User", "CreatedBy")
  1021. .WithMany()
  1022. .HasForeignKey("CreatedById");
  1023. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  1024. .WithMany()
  1025. .HasForeignKey("PropertyId");
  1026. b.HasOne("UnivateProperties_API.Model.Timeshare.TimeshareWeek", "TimeshareWeek")
  1027. .WithMany()
  1028. .HasForeignKey("TimeshareWeekId");
  1029. });
  1030. modelBuilder.Entity("UnivateProperties_API.Model.Misc.Address", b =>
  1031. {
  1032. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  1033. .WithMany()
  1034. .HasForeignKey("OwnerId");
  1035. });
  1036. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.BidItem", b =>
  1037. {
  1038. b.HasOne("UnivateProperties_API.Model.Users.Individual", "BidMaker")
  1039. .WithMany()
  1040. .HasForeignKey("BidMakerId");
  1041. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  1042. .WithMany("BidItems")
  1043. .HasForeignKey("PropertyId");
  1044. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  1045. .WithMany()
  1046. .HasForeignKey("StatusId");
  1047. b.HasOne("UnivateProperties_API.Model.Timeshare.TimeshareWeek", "TimeshareWeek")
  1048. .WithMany("BidItems")
  1049. .HasForeignKey("TimeshareWeekId");
  1050. });
  1051. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.ProcessFlow", b =>
  1052. {
  1053. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  1054. .WithMany("ProcessFlows")
  1055. .HasForeignKey("PropertyID");
  1056. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  1057. .WithMany()
  1058. .HasForeignKey("StatusID")
  1059. .OnDelete(DeleteBehavior.Cascade);
  1060. b.HasOne("UnivateProperties_API.Model.Timeshare.TimeshareWeek", "Timeshare")
  1061. .WithMany("ProcessFlows")
  1062. .HasForeignKey("TimeshareID");
  1063. });
  1064. modelBuilder.Entity("UnivateProperties_API.Model.Properties.Property", b =>
  1065. {
  1066. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  1067. .WithMany("Properties")
  1068. .HasForeignKey("AgencyId");
  1069. b.HasOne("UnivateProperties_API.Model.Users.Agent", "Agent")
  1070. .WithMany("Properties")
  1071. .HasForeignKey("AgentId");
  1072. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  1073. .WithMany("Properties")
  1074. .HasForeignKey("OwnerId");
  1075. b.HasOne("UnivateProperties_API.Model.Properties.PropertyType", "PropertyType")
  1076. .WithMany()
  1077. .HasForeignKey("PropertyTypeId")
  1078. .OnDelete(DeleteBehavior.Cascade);
  1079. });
  1080. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyImage", b =>
  1081. {
  1082. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  1083. .WithMany("PropertyImages")
  1084. .HasForeignKey("PropertyId")
  1085. .OnDelete(DeleteBehavior.Cascade);
  1086. });
  1087. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyUserField", b =>
  1088. {
  1089. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  1090. .WithMany("PropertyUserFields")
  1091. .HasForeignKey("PropertyId")
  1092. .OnDelete(DeleteBehavior.Cascade);
  1093. b.HasOne("UnivateProperties_API.Model.Properties.UserDefinedField", "UserDefinedField")
  1094. .WithMany()
  1095. .HasForeignKey("UserDefinedFieldId")
  1096. .OnDelete(DeleteBehavior.Cascade);
  1097. });
  1098. modelBuilder.Entity("UnivateProperties_API.Model.Properties.UserDefinedField", b =>
  1099. {
  1100. b.HasOne("UnivateProperties_API.Model.Properties.UserDefinedGroup", "Group")
  1101. .WithMany("Fields")
  1102. .HasForeignKey("GroupId")
  1103. .OnDelete(DeleteBehavior.Cascade);
  1104. });
  1105. modelBuilder.Entity("UnivateProperties_API.Model.Region.City", b =>
  1106. {
  1107. b.HasOne("UnivateProperties_API.Model.Region.Province", "Province")
  1108. .WithMany()
  1109. .HasForeignKey("ProvinceId")
  1110. .OnDelete(DeleteBehavior.Cascade);
  1111. });
  1112. modelBuilder.Entity("UnivateProperties_API.Model.Region.Suburb", b =>
  1113. {
  1114. b.HasOne("UnivateProperties_API.Model.Region.City", "City")
  1115. .WithMany()
  1116. .HasForeignKey("CityId")
  1117. .OnDelete(DeleteBehavior.Cascade);
  1118. });
  1119. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.TimeshareWeek", b =>
  1120. {
  1121. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  1122. .WithMany()
  1123. .HasForeignKey("AgencyId");
  1124. b.HasOne("UnivateProperties_API.Model.Users.Agent", "Agent")
  1125. .WithMany()
  1126. .HasForeignKey("AgentId");
  1127. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  1128. .WithMany()
  1129. .HasForeignKey("OwnerId")
  1130. .OnDelete(DeleteBehavior.Cascade);
  1131. b.HasOne("UnivateProperties_API.Model.Region.Province", "Region")
  1132. .WithMany()
  1133. .HasForeignKey("RegionId")
  1134. .OnDelete(DeleteBehavior.Cascade);
  1135. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  1136. .WithMany()
  1137. .HasForeignKey("StatusId")
  1138. .OnDelete(DeleteBehavior.Cascade);
  1139. });
  1140. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfigurationType", b =>
  1141. {
  1142. b.HasOne("UnivateProperties_API.Model.Timeshare.UnitConfiguration", "UnitConfiguration")
  1143. .WithMany("Types")
  1144. .HasForeignKey("UnitConfigurationId")
  1145. .OnDelete(DeleteBehavior.Cascade);
  1146. });
  1147. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agent", b =>
  1148. {
  1149. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  1150. .WithMany("Agents")
  1151. .HasForeignKey("AgencyId");
  1152. b.HasOne("UnivateProperties_API.Model.Communication.Template")
  1153. .WithMany("AgentBCC")
  1154. .HasForeignKey("TemplateId");
  1155. b.HasOne("UnivateProperties_API.Model.Users.User", "User")
  1156. .WithMany()
  1157. .HasForeignKey("UserId");
  1158. });
  1159. modelBuilder.Entity("UnivateProperties_API.Model.Users.Individual", b =>
  1160. {
  1161. b.HasOne("UnivateProperties_API.Model.Misc.Address", "Address")
  1162. .WithMany()
  1163. .HasForeignKey("AddressId");
  1164. b.HasOne("UnivateProperties_API.Model.Banks.BankAccount", "BankAccount")
  1165. .WithMany()
  1166. .HasForeignKey("BankAccountId");
  1167. b.HasOne("UnivateProperties_API.Model.Communication.Template")
  1168. .WithMany("IndividualBCC")
  1169. .HasForeignKey("TemplateId");
  1170. b.HasOne("UnivateProperties_API.Model.Users.User", "User")
  1171. .WithMany()
  1172. .HasForeignKey("UserId");
  1173. });
  1174. modelBuilder.Entity("UnivateProperties_API.Model.Users.Person", b =>
  1175. {
  1176. b.HasOne("UnivateProperties_API.Model.Users.User", "User")
  1177. .WithMany()
  1178. .HasForeignKey("UserId");
  1179. });
  1180. #pragma warning restore 612, 618
  1181. }
  1182. }
  1183. }