17 lines
609 B
C#
17 lines
609 B
C#
using Marco.Pms.Model.ViewModels.Activities;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.ServiceProject
|
|
{
|
|
public class ProjectBranchVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? BranchName { get; set; }
|
|
public BasicServiceProjectVM? Project { get; set; }
|
|
public string? ContactInformation { get; set; } // Json string
|
|
public string? Address { get; set; }
|
|
public string? BranchType { get; set; } // HQ, ATMs, Bank Branches, Overcounter desk
|
|
public DateTime CreatedAt { get; set; }
|
|
public BasicEmployeeVM? CreatedBy { get; set; }
|
|
}
|
|
}
|