Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Codecrew / Moya Info Tools

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 1
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya-info-tools
  • MoyaSignup
  • TicketType.cs
  • Liv Haapala's avatar
    Lisätty asetusikkuna ohjelman käynnistykseen ja lisätty näppäinyhdistelmä, millä… · b5c3486e
    … ohjelman saa suljettua.
    Liv Haapala committed Oct 23, 2016
    b5c3486e Browse Files
TicketType.cs 449 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MoyaSignup
{
    class TicketType
    {
        public int Id;
        public string Description;
        public TicketType(int id, string description)
        {
            this.Id = id;
            this.Description = description;
        }
        public override string ToString()
        {
            return this.Description;
        }
    }
}