10 lines
207 B
C#
10 lines
207 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace TheXamlGuy.Framework.Camera;
|
|
|
|
public class RemoteCameraConfiguration : IRemoteCameraConfiguration
|
|
{
|
|
[NotNull]
|
|
public string? Name { get; set; }
|
|
}
|