14 lines
272 B
C#
14 lines
272 B
C#
namespace CadParamPluging.Domain.Models
|
|
{
|
|
public class DrawingParams
|
|
{
|
|
public double Width { get; set; }
|
|
public double Height { get; set; }
|
|
|
|
public bool HasValidSize()
|
|
{
|
|
return Width > 0 && Height > 0;
|
|
}
|
|
}
|
|
}
|