25 lines
370 B
C#
25 lines
370 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.Config {
|
|
|
|
/// <summary>
|
|
/// Ⱥ×éÅäÖÃ
|
|
/// </summary>
|
|
public class GroupSetting {
|
|
|
|
public int LogoHeight {
|
|
get { return 120; }
|
|
}
|
|
|
|
public int LogoWidth {
|
|
get { return 120; }
|
|
}
|
|
|
|
public int TemplateId {
|
|
get { return 1; }
|
|
}
|
|
|
|
}
|
|
}
|
|
|