using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MTWorkHR.Application.Models
{
    public class EntityDto
    {
        public long Id { get; set; }

        public bool ReadOnly { get; set; }
    }
}