添加项目文件。
This commit is contained in:
26
Epost.Model/DemoModel.cs
Normal file
26
Epost.Model/DemoModel.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
public class DemoModel:Base
|
||||
{
|
||||
private string name = string.Empty;
|
||||
|
||||
public string Name
|
||||
{
|
||||
get
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
name = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user