16 lines
419 B
C#
16 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class CycleInfoResult
|
|
{
|
|
public int nengliCycleId { get; set; } = 0;
|
|
public int duoweiCycleId { get; set; } = 0;
|
|
public int jiaolvCycleId { get; set; } = 0;
|
|
public int jinengCycleId { get; set; } = 0;
|
|
public int fenggeCycleId { get; set; } = 0;
|
|
}
|
|
}
|