mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-17 00:47:48 +01:00
21 lines
365 B
C#
21 lines
365 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Flowframes.Data
|
|||
|
|
{
|
|||
|
|
public class EncoderInfo
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; } = "unknown";
|
|||
|
|
|
|||
|
|
public EncoderInfo() { }
|
|||
|
|
|
|||
|
|
public EncoderInfo(string name)
|
|||
|
|
{
|
|||
|
|
Name = name;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|