19 lines
340 B
C#
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; }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|