18 lines
383 B
C#
18 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HRM.BO.Basic
|
|
{
|
|
public class HallOfFame : BasicBaseObject
|
|
{
|
|
public string Code { get; set; }
|
|
public string Tittle { get; set; }
|
|
public string Description { get; set; }
|
|
public object FileData { get; set; }
|
|
|
|
}
|
|
}
|