LASAPlatform/OpenAuth.App/ServiceApp/Request/WorkSpace.cs

18 lines
457 B
C#
Raw Normal View History

2025-06-11 14:42:36 +08:00
using OpenAuth.Repository.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Request
{
public class WorkSpace
{
public LasaWorkspace LasaWorkspace { get; set; }
public List<long> UserIds { get; set; }
public List<string> DeviceIds { get; set; }
2025-06-12 11:26:59 +08:00
public List<LasaSpaceLockFly> Lockfly { get; set; }
2025-06-11 14:42:36 +08:00
}
}