Index: src/Common/SharpMap.Api/IStyle.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/SharpMap.Api/IStyle.cs (.../IStyle.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/SharpMap.Api/IStyle.cs (.../IStyle.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -19,24 +19,26 @@ namespace SharpMap.Api { - /// - /// Defines an interface for defining layer styles - /// - public interface IStyle : ICloneable - { + /// + /// Defines an interface for defining layer styles + /// + public interface IStyle : ICloneable + { long Id { get; set; } - /// - /// Gets or sets the minimum zoom value where the style is applied - /// - double MinVisible { get; set; } - /// - /// Gets or sets the maximum zoom value where the style is applied - /// - double MaxVisible { get; set; } - /// - /// Gets or sets whether objects in this style is rendered or not - /// - bool Enabled { get; set; } - } -} + /// + /// Gets or sets the minimum zoom value where the style is applied + /// + double MinVisible { get; set; } + + /// + /// Gets or sets the maximum zoom value where the style is applied + /// + double MaxVisible { get; set; } + + /// + /// Gets or sets whether objects in this style is rendered or not + /// + bool Enabled { get; set; } + } +} \ No newline at end of file