mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
15 lines
409 B
Beef
15 lines
409 B
Beef
using System;
|
|
using System.Collections;
|
|
using System.Text;
|
|
|
|
namespace Beefy.widgets
|
|
{
|
|
public struct DesignEditableAttribute : Attribute
|
|
{
|
|
public String DisplayType { get; set mut; }
|
|
public String Group { get; set mut; }
|
|
public String DisplayName { get; set mut; }
|
|
public String SortName { get; set mut; }
|
|
public bool DefaultEditString { get; set mut; }
|
|
}
|
|
}
|