windowcapture
исходный код / Models/AudioPlayerSettings.cs

AudioPlayerSettings.cs

22 строк · 419 байт · модуль Models
 1using System;
 2using System.Collections.Generic;
 3using System.Runtime.Serialization;
 4
 5namespace WindowCapture.Models
 6{
 7    [DataContract]
 8    public class AudioPlayerSettings
 9    {
10        [DataMember]
11        public int Width { get; set; }
12
13        [DataMember]
14        public int Height { get; set; }
15
16        public AudioPlayerSettings()
17        {
18            Width = 500;
19            Height = 120;
20        }
21    }
22}