ContainerInfo.cs 456 B

1234567891011
  1. namespace UICommon.CommonContainer;
  2. public class ContainerInfo(int index, string? name, string moduleName, bool isDefault, ImageSource imageSource, bool isHidden = false)
  3. {
  4. public int Index { get; } = index;
  5. public string? Name { get; } = name;
  6. public string ModuleName { get; } = moduleName;
  7. public bool IsDefault { get; } = isDefault;
  8. public ImageSource Icon { get; } = imageSource;
  9. public bool IsHidden { get; } = isHidden;
  10. }