Files
Hushian/Common/Dtos/Company/CompanyContentInfo/ReadANDUpdate_CompanyContentInfoDto.cs
2025-06-28 15:31:07 +03:30

15 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos.Company.CompanyContentInfo
{
public class ReadANDUpdate_CompanyContentInfoDto
{
public int ID { get; set; }
public string Content { get; set; }
}
}