tijian_jichuang/Code/Entities/DTO/PostDateClass.cs
2025-02-20 11:54:48 +08:00

46 lines
943 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
namespace SOH.Entities.DTO
{
[Serializable()]
[DataContract(IsReference = true)]
public class PostDateClass
{
String prop;
public String Prop
{
get { return prop; }
set { prop = value; }
}
String value;
public String Value
{
get { return this.value; }
set { this.value = value; }
}
/// <summary>
/// 0为字符串1为文件
/// </summary>
int type;
public int Type
{
get { return type; }
set { type = value; }
}
public PostDateClass(String prop, String value, int type = 0)
{
this.prop = prop;
this.value = value;
this.type = type;
}
}
}