12 lines
312 B
C#
12 lines
312 B
C#
namespace ReportGenerator.Generator.Interface;
|
|
|
|
public interface IBounds
|
|
{
|
|
public string Unit { get; }
|
|
public int? MinWidth { get; }
|
|
public int? MinHeight { get; }
|
|
public int? MaxWidth { get; }
|
|
public int? MaxHeight { get; }
|
|
public int? Width { get; }
|
|
public int? Height { get; }
|
|
} |