21 lines
450 B
C#
21 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.CloudSchool
|
|
{
|
|
public class CloudSchoolResult
|
|
{
|
|
/// <summary>
|
|
/// 云校名称
|
|
/// </summary>
|
|
public string CloudName { get; set; }
|
|
/// <summary>
|
|
/// 云校ID
|
|
/// </summary>
|
|
public long CloudId { get; set; }
|
|
}
|
|
}
|