34 lines
663 B
C#
34 lines
663 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class IdNameResult
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public int Year { get; set; }
|
|
|
|
public string TypeName { get; set; }
|
|
public int Score { get; set; } = 999;
|
|
}
|
|
|
|
public class IdQuery
|
|
{
|
|
public long? CustomerId { get; set; }
|
|
public int Id { get; set; }
|
|
|
|
public List<int> Ids { get; set; }
|
|
}
|
|
|
|
public class BaseResponse
|
|
{
|
|
public string msg { get; set; }
|
|
|
|
public bool success { get; set; } = true;
|
|
}
|
|
}
|