Skip to content

Commit 9b1b874

Browse files
authored
Merge pull request #23 from gemstone/development
Added EventType Interface
2 parents 1435f60 + 39a83f9 commit 9b1b874

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
//******************************************************************************************************
2+
// EventTypeInterface.cs - Gbtc
3+
//
4+
// Copyright © 2025, Grid Protection Alliance. All Rights Reserved.
5+
//
6+
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See
7+
// the NOTICE file distributed with this work for additional information regarding copyright ownership.
8+
// The GPA licenses this file to you under the MIT License (MIT), the "License"; you may
9+
// not use this file except in compliance with the License. You may obtain a copy of the License at:
10+
//
11+
// http://opensource.org/licenses/MIT
12+
//
13+
// Unless agreed to in writing, the subject software distributed under the License is distributed on an
14+
// "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Refer to the
15+
// License for the specific language governing permissions and limitations.
16+
//
17+
// Code Modification History:
18+
// ----------------------------------------------------------------------------------------------------
19+
// 10/18/2025 - C. Lackner
20+
// Generated original version of source code.
21+
//
22+
//******************************************************************************************************
23+
24+
namespace Gemstone.Data.Model;
25+
26+
/// <summary>
27+
/// Defines an interface that marks a class as a JSON construct in <see cref="EventDetails"/>
28+
/// the property name.
29+
/// </summary>
30+
public interface IEventType { }

0 commit comments

Comments
 (0)