Files
Hushian/Common/Dtos/Prompt/ReadANDUpdate_PromptDto.cs
mmrbnjd 86804a57f1 ...
2025-08-16 01:20:42 +03:30

19 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos.Prompt
{
public class ReadANDUpdate_PromptDto
{
public int ID { get; set; }
public DateTime Cdatetime { get; set; }
public int CompanyID { get; set; }
public string Test { get; set; }
}
}