using System; using System.Collections.Generic; using System.Text; namespace DllUfpEntity.Dto { /// /// 应用基本信息 /// public class AppInfoDto { /// /// 应用名称 /// public string AppName { get; set; } /// /// LOGO地址 /// public string Logo { get; set; } /// /// Slogan /// public string Slogan { get; set; } /// /// 公司名 /// public string CompanyName { get; set; } } }