28 lines
486 B
C#
28 lines
486 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 class IdQuery
|
|
{
|
|
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;
|
|
}
|
|
}
|