14 lines
273 B
C#
14 lines
273 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StudyLib.API.Models
|
|
{
|
|
public class GroupCandidateSaveModel
|
|
{
|
|
public string UserId { get; set; }
|
|
public long GroupId { get; set; }
|
|
}
|
|
}
|