Browse Source

Add LocationId to Locations Model

pull/223/head
Christian Arenas 7 years ago
parent
commit
6c354a2c3d
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/Services/Location/Locations.API/Model/Locations.cs

+ 2
- 0
src/Services/Location/Locations.API/Model/Locations.cs View File

@ -9,6 +9,8 @@
{ {
[BsonRepresentation(BsonType.ObjectId)] [BsonRepresentation(BsonType.ObjectId)]
public string Id { get; set; } public string Id { get; set; }
public int LocationId { get; set; }
public string Code { get; set; } public string Code { get; set; }
[BsonRepresentation(BsonType.ObjectId)] [BsonRepresentation(BsonType.ObjectId)]
public string Parent_Id { get; set; } public string Parent_Id { get; set; }


Loading…
Cancel
Save