Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/School/SchoolResult.cs

16 lines
308 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.School
{
public class SchoolResult
{
public long Id { get; set; }
public string SchoolName { get; set; } = null!;
}
}