11 lines
261 B
C#
11 lines
261 B
C#
// Copyright (c) Nate McMaster.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
namespace NetStandardClassLib
|
|
{
|
|
public class Class1
|
|
{
|
|
public string GetColor() => "Red";
|
|
}
|
|
}
|