From 1f296391979833186f68c39870c2c51e6fe89846 Mon Sep 17 00:00:00 2001 From: cheng19920620 <511180749@qq.com> Date: Tue, 14 Nov 2023 15:02:03 +0800 Subject: [PATCH] -- --- .../Entity/MinioController/UserModel.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 IBKLinker-Minio/Entity/MinioController/UserModel.cs diff --git a/IBKLinker-Minio/Entity/MinioController/UserModel.cs b/IBKLinker-Minio/Entity/MinioController/UserModel.cs new file mode 100644 index 0000000..2c1ec4d --- /dev/null +++ b/IBKLinker-Minio/Entity/MinioController/UserModel.cs @@ -0,0 +1,18 @@ +using SOA.Persistent; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace IBKLinker_Minio.Entity.MinioController +{ + internal class UserModel: MinioUser + { + /// + ///角色 + /// + public string RoleName { get; set; } + } +}