27 lines
430 B
C#
27 lines
430 B
C#
![]() |
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|