Files
Backend-Api/CompanyManagment.App.Contracts/ModuleTextManager/ModuleTextManagerViewModel.cs
2024-07-05 21:36:15 +03:30

15 lines
349 B
C#

using _0_Framework.Application;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.ModuleTextManager;
public class ModuleTextManagerViewModel
{
public long ModuleId { get; set; }
public long TextManagerId { get; set; }
}