mirror of
https://github.com/RaySollium99/MSNPSharp.git
synced 2025-09-03 21:57:44 -04:00
44 lines
No EOL
725 B
C#
44 lines
No EOL
725 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace MSNPSharpClient
|
|
{
|
|
public partial class MusicForm : Form
|
|
{
|
|
public MusicForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
|
|
public string Artist
|
|
{
|
|
get
|
|
{
|
|
return txtArtist.Text;
|
|
}
|
|
}
|
|
|
|
public string Song
|
|
{
|
|
get
|
|
{
|
|
return txtSong.Text;
|
|
}
|
|
}
|
|
|
|
public string Album
|
|
{
|
|
get
|
|
{
|
|
return txtSong.Text;
|
|
}
|
|
}
|
|
|
|
}
|
|
} |