12 lines
340 B
C#
12 lines
340 B
C#
namespace InternshipSystem.Core
|
|
{
|
|
public class StaticPage
|
|
{
|
|
public long Id { get; set; }
|
|
public string AccessName { get; set; }
|
|
public string Title { get; set; }
|
|
public string TitleEng { get; set; }
|
|
public string Content { get; set; }
|
|
public string ContentEng { get; set; }
|
|
}
|
|
} |