17 lines
397 B
C#
17 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.DTO.MaintenanceDto
|
|
{
|
|
public class MaintenanceDto
|
|
{
|
|
public int InstitutionId { get; set; }
|
|
public string? InstitutionName { get; set; }
|
|
public int TerritoryId { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|