//----------------------------------------------------------------------- // // * Copyright (C) WaterCloud.Framework All Rights Reserved // * version : 1.0 // * author : WaterCloud.Framework // * FileName: QuickModule.cs // * history : Created by T4 04/13/2020 16:51:14 // //----------------------------------------------------------------------- namespace WaterCloud.Domain.SystemManage { /// /// QuickModule Entity Model /// public class QuickModuleExtend { public string id { get; set; } public string title { get; set; } public string href { get; set; } public string icon { get; set; } } }