-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPastValuationsLa.cs
More file actions
41 lines (23 loc) · 928 Bytes
/
PastValuationsLa.cs
File metadata and controls
41 lines (23 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
namespace ValuationBackend;
public partial class PastValuationsLa
{
public int Id { get; set; }
public int ReportId { get; set; }
public string MasterFileRefNo { get; set; } = null!;
public string? FileNoGndivision { get; set; }
public string? Situation { get; set; }
public string? DateOfValuation { get; set; }
public string? PurposeOfValuation { get; set; }
public string? PlanOfParticulars { get; set; }
public string? Extent { get; set; }
public string? Rate { get; set; }
public string? RateType { get; set; }
public string? Remarks { get; set; }
public string? LocationLongitude { get; set; }
public string? LocationLatitude { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public int MasterFileId { get; set; }
}