You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
439 B
C#
21 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace VOL.Entity.System
|
|
{
|
|
public class UMSend
|
|
{
|
|
public int goType { get; set; }
|
|
public int id { get; set; }
|
|
public string title { get; set; }
|
|
|
|
public string content { get; set; }
|
|
public string creator { get; set; }
|
|
|
|
public DateTime? createDate { get; set; }
|
|
|
|
public string user { get; set; }
|
|
}
|
|
}
|