29 lines
833 B
C#
29 lines
833 B
C#
using Marco.Pms.Model.ViewModels.Activities;
|
|
using Marco.Pms.Model.ViewModels.Master;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.ServiceProject
|
|
{
|
|
public class ServiceProjectList
|
|
{
|
|
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string ShortName { get; set; } = string.Empty;
|
|
public string Address { get; set; } = string.Empty;
|
|
public DateTime AssignedDate { get; set; }
|
|
public Guid StatusId { get; set; }
|
|
|
|
public BasicEmployeeVM? CreatedBy { get; set; }
|
|
public BasicEmployeeVM? UpdatedBy { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
}
|
|
}
|