23 lines
811 B
C#
23 lines
811 B
C#
using Marco.Pms.Model.Master;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Marco.Pms.Model.Dtos.ServiceProject
|
|
{
|
|
public class ServiceProjectDto
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string ShortName { get; set; } = string.Empty;
|
|
public Guid ClientId { get; set; }
|
|
public required List<Guid> ServiceIds { get; set; }
|
|
public string Address { get; set; } = string.Empty;
|
|
public DateTime AssignedDate { get; set; }
|
|
public Guid StatusId { get; set; }
|
|
|
|
public string ContactName { get; set; } = string.Empty;
|
|
public string ContactPhone { get; set; } = string.Empty;
|
|
public string ContactEmail { get; set; } = string.Empty;
|
|
|
|
}
|
|
}
|