18 lines
422 B
C#
18 lines
422 B
C#
using MongoDB.Bson;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
namespace Admin.NET.Core.Service;
|
|
public class ChangeuniversityDto
|
|
{
|
|
[JsonConverter(typeof(ObjectIdConverter))]
|
|
public ObjectId _id { get; set; }
|
|
|
|
public string olduniversityName { get; set; }
|
|
public string newuniversityName { get; set; }
|
|
|
|
}
|