14 lines
436 B
C#
14 lines
436 B
C#
namespace Marco.Pms.Model.ViewModels.ServiceProject
|
|
{
|
|
public class BasicServiceProjectVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? ShortName { get; set; }
|
|
public DateTime AssignedDate { get; set; }
|
|
public string? ContactName { get; set; }
|
|
public string? ContactPhone { get; set; }
|
|
public string? ContactEmail { get; set; }
|
|
}
|
|
}
|